home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Games Collection 1 / software vault.zip / software vault / CDR10 / SPX20.ZIP / SPX_INT.ZIP / SPX_TIM.INT < prev    next >
Text File  |  1993-09-15  |  434b  |  24 lines

  1. Unit spx_tim;
  2.  
  3. {$X+,O+ }
  4. { SPX Library Version 2.0  Copyright 1993 Scott D. Ramsay }
  5. { NOTE: Do not use this unit with SPX_SND.TPU             }
  6.  
  7. Interface
  8.  
  9. Uses crt,dos,spx_fnc;
  10.  
  11. type
  12.   UserProc  = procedure;
  13.  
  14. var
  15.   cs,playing  : boolean;
  16.   f_clk,s_clk : array[0..5] of word;
  17.   rate,cntime : word;
  18.   f_userclk,
  19.   s_userclk   : userproc;
  20.  
  21. procedure setrate(cycles:word);
  22. procedure wait(seconds,which:integer);
  23.  
  24.